home *** CD-ROM | disk | FTP | other *** search
- #include <exec/types.h>
- #include <intuition/intuition.h>
-
- #include "/defs.h"
-
- struct mPrefObject {
- LONG Wasps, Bees, Tightness, Speed, Colorcycling, Aimmode;
- };
-
- VOID defaults( struct bMessage *bMsg )
- {
- static struct mPrefObject mPO = { 3L, 16L, 5L, 4L, 0L, 0L };
-
- bMsg->bm_Mod = INVALID_ID;
- bMsg->bm_Dep = 2;
-
- bMsg->bm_Info = "ASwarm Module";
- bMsg->bm_Data = ( UBYTE * )( &mPO );
- }
-